home *** CD-ROM | disk | FTP | other *** search
- /* commonMM_Demo Common */
- /* Copyright © 1994 George R. Cossey */
-
- /*
- File name: commonMM_Demo.h
- Function: Common variables for program specific code.
- History: 1/16/94 Original by George Cossey
-
- */
-
- /* ======================================================= */
- /* ======================================================= */
-
-
- #include "Folders.h" /* For FindFolder */
-
- #define PrefsCreator 'xxxx' /* Creator, this has to be the same as your App */
- #define PrefsType 'Pref' /* Type, this has to match the type in your BNDL */
- #define PrefsFileName "\pMy Prefs" /* This is the name of your prefs file */
-
- #define PrefsFormatRevision 1 /* Change each time the format changes */
-
- /* NOTE : FormatRevision MUST be first in the record, and always a short */
- typedef struct PrefsRec{ /* Preferences Record definition */
- /* ALWAYS KEEP FormatRevision AS THE FIRST ELEMENT IN THIS RECORD */
- short FormatRevision; /* FIRST ALWAYS, Change each time the format changes */
- WindowLocRec theWindowLocRec; /* For saving window positions */
-
- /* Add other preference variable definitions after this line */
-
- }PrefsRec,*PrefsPRec,**PrefsHRec;
-
- /* ======================================================= */
- /* ======================================================= */
-